home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / i.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  113 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19. float i_data[][2] = {
  20.     {0.548767, 9.414791},
  21.     {2.795284, 9.757771},
  22.     {1.457663, 9.311897},
  23.     {2.503751, 9.157557},
  24.     {1.714898, 8.986067},
  25.     {2.109325, 7.785638},
  26.     {1.286174, 7.013934},
  27.     {1.800643, 6.070740},
  28.     {0.994641, 5.161843},
  29.     {1.783494, 4.767417},
  30.     {0.943194, 4.167202},
  31.     {1.852090, 4.304394},
  32.     {1.063237, 3.549839},
  33.     {2.023580, 3.978564},
  34.     {1.406217, 3.172562},
  35.     {2.315113, 3.875670},
  36.     {2.006431, 3.018221},
  37.     {2.812433, 3.944266},
  38.     {2.726688, 3.429796},
  39.     {3.258307, 4.132905},
  40.  
  41.     {1.989282, 10.923902},
  42.     {2.778135, 12.295820},
  43.     {2.966774, 11.678456},
  44.     {3.687031, 12.947481},
  45.  
  46. };
  47.  
  48.  
  49. draw_i() {
  50.  
  51.     bgntmesh();
  52.     v2f(i_data[0]);
  53.     v2f(i_data[1]);
  54.     v2f(i_data[2]);
  55.     v2f(i_data[3]);
  56.     v2f(i_data[4]);
  57.     v2f(i_data[5]);
  58.     v2f(i_data[6]);
  59.     v2f(i_data[7]);
  60.     v2f(i_data[8]);
  61.     v2f(i_data[9]);
  62.     v2f(i_data[10]);
  63.     v2f(i_data[11]);
  64.     v2f(i_data[12]);
  65.     v2f(i_data[13]);
  66.     v2f(i_data[14]);
  67.     v2f(i_data[15]);
  68.     v2f(i_data[16]);
  69.     v2f(i_data[17]);
  70.     v2f(i_data[18]);
  71.     v2f(i_data[19]);
  72.     endtmesh();
  73.  
  74.     bgntmesh();
  75.     v2f(i_data[20]);
  76.     v2f(i_data[21]);
  77.     v2f(i_data[22]);
  78.     v2f(i_data[23]);
  79.     endtmesh();
  80.  
  81.     bgnline();
  82.     v2f(i_data[0]);
  83.     v2f(i_data[2]);
  84.     v2f(i_data[4]);
  85.     v2f(i_data[6]);
  86.     v2f(i_data[8]);
  87.     v2f(i_data[10]);
  88.     v2f(i_data[12]);
  89.     v2f(i_data[14]);
  90.     v2f(i_data[16]);
  91.     v2f(i_data[18]);
  92.     v2f(i_data[19]);
  93.     v2f(i_data[17]);
  94.     v2f(i_data[15]);
  95.     v2f(i_data[13]);
  96.     v2f(i_data[11]);
  97.     v2f(i_data[9]);
  98.     v2f(i_data[7]);
  99.     v2f(i_data[5]);
  100.     v2f(i_data[3]);
  101.     v2f(i_data[1]);
  102.     endline();
  103.  
  104.     bgnline();
  105.     v2f(i_data[20]);
  106.     v2f(i_data[22]);
  107.     v2f(i_data[23]);
  108.     v2f(i_data[21]);
  109.     endline();
  110.  
  111. }
  112.  
  113.